Welcome![Sign In][Sign Up]
Location:
Search - compiler design

Search list

[Develop ToolsCompiler Design In C

Description: 英文电子书,关于用C语言来构造编译器的,本站有它的配套源代码.-English e-books, on the use of C language compiler construction, the site has its source code matching.
Platform: | Size: 176182 | Author: 吕进华 | Hits:

[Bookscomputer science - compiler design - introduction

Description: 有关计算理论的英文教材-the computational theory of teaching English
Platform: | Size: 3917824 | Author: 王慧 | Hits:

[ELanguage实例有详细文档的哦

Description: 一个小型c compiler的设计与实现-a small c compiler Design and Implementation
Platform: | Size: 894976 | Author: 张晶 | Hits:

[ELanguagehc_compiler

Description: 由于时间紧迫及事先准备不足,编译器最后定型时暴露出不少问题及不足之处,主要有以下一些方面:   不支持数组数据类型,这是文法分析器设计时的一个疏漏,由于时间关系,最后只得把扫描器中已做好的相关的数组部分删去。   对于float数据类型的支持,直到语义分析都是正常的,也能生成相应的汇编代码,但由于我们对8086/8088指令系统本身了解不足,这样的汇编代码将只能做到含义上完全忠实于源程序,但不能运行。   对于局部变量的支持,则于时间紧迫,所有的局部变量全被处理成静态变量。使递归函数不能得到正确的结果。    对于函数调用语句,不进行参数匹配检查,如果参数数量不对,也将能通过编译,但运行时将产生非法操作。   对&& !等逻辑操作在最后生成代码时处理比较粗燥,生成的代码在逻辑复杂时将不能保证运行正常。   接下来有一些,不能说是缺陷,但必须说明的问题:   对于main函数,没有参数表,通回类型也必须为void,但如果写上参数表及其他返回类型也能编译通过,生成代码时将简单地忽略,不影响最后的代码的运行。   对于while,for,if语句,其语句体不管是一句还是多句,必须都有{}围起来。这跟C语言中若是一句则可省略{}不同。-Due to the time constraints and lack of preparation in advance, the compiler finalized when exposed numerous problems and shortcomings, mainly in the following aspects : no support for array data type, which is grammar analyzer design of an omission, because of the time, the final could only have scanners do phase customs array deleted. For float data types of support until semantic analysis is normal, and can generate the corresponding assembly code, but because of our 8086/8088 directive to the knowledge of the system itself, this compilation can do to code meaning entirely faithful to the source, but not running. For the support of local variables, in the time constraints, all local variables were all handled in the static variable. So recursive function will not get the right results.
Platform: | Size: 260096 | Author: 周杰 | Hits:

[Editor中间代码优化

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是中间代码优化部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, it is the middle part of code optimization. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 13312 | Author: | Hits:

[Editor中间代码生成目标

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是中间代码生成目标代码部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, which is code-generating object code part. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 7168 | Author: | Hits:

[Editor目标代码的解释执行

Description: 这是编译原理的源代码,涉及了编译原理的各个过程:词法分析,LL1语法分析,语义分析,中间代码生成,中间代码优化(常表达式优化,公共表达式优化,循环不变式优化),中间代码生成目标代码,目标代码的解释执行,详细地阐述了一个编译器的设计和实现。它是大纲教学,课程设计良好的示范,也是编程爱好者提高的好参考,其中这是目标代码的解释执行部分。希望尽早的开通我的帐号,和大家多多交流,成为热爱编程的好朋友。-this principle is to compile the source code, the compiler principles involved in various processes : lexical analysis, LL1 syntax analysis, semantic analysis and code generation and code optimization (regular expression optimization, public expression optimization, optimization loop invariant), intermediate code generation target code goal of the interpretation and implementation of code, described in detail a compiler design and implementation. It is the outline of teaching, curriculum design good model, as well as programming enthusiasts to raise a good reference, which is the target code operative explained. Early hopes for the opening of my account, and we interact more, as a good friend who love programming.
Platform: | Size: 8192 | Author: | Hits:

[ELanguage020833

Description: 这是个编译原理的课程设计,是一个DO-WHILE循环语句的翻译程序设计,包括词法分析,语法分析,生成中间代码四元式。-This is a compiler theory of curriculum design, is a DO-WHILE loop is the translation program design, including lexical analysis, grammar analysis, code generation middle-4 yuan.
Platform: | Size: 8192 | Author: 冷清雪 | Hits:

[ELanguagelcc.4.2.tar

Description: c语言编译器,跨平台,4.2版本 lcc version 3.x is described in the book "A Retargetable C Compiler: Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/~drh/pubs/interface4.pdf. -c compiler, cross-platform, version 4.2 LCC version 3.x is described in the book "A Retargetable C Compiler : Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/ ~ drh/pubs/interface4.pdf.
Platform: | Size: 638976 | Author: 王陈 | Hits:

[ELanguagelccsrc3.6

Description: c语言编译器,3.6版本 lcc version 3.x is described in the book "A Retargetable C Compiler: Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/~drh/pubs/interface4.pdf. -c language compiler, version 3.6 LCC version 3.x is described in the book "A Retargetable C Compiler : Design and Implementation" (Addison-Wesley, 1995, ISBN 0-8053-1670-1). There are significant differences between 3.x and 4.x, most notably in the intermediate code. For details, see http://www.research.microsoft.com/ ~ drh/pubs/interface4.pdf.
Platform: | Size: 230400 | Author: 王陈 | Hits:

[ELanguagecomplier11111

Description: 一个完整的编译器设计,包含词法语法,编译输出三地址码,很不错!-a complete compiler design, including lexical syntax, compiler output code addresses three very good!
Platform: | Size: 243712 | Author: xy | Hits:

[OtherA_Retargetable_C_Compiler_Design_and_Implementatio

Description: lcc编译器是一个具有产品级质量的用于研究的C编译器,在UNIX界广为流行。本书深入到 lcc编译器的内部,在代码级对该系统的设计与实现进行了详细的介绍。-LCC compiler is a product-level quality for the study of the C compiler in the UNIX sector popular. The book went to LCC compiler, in the code of the system-level Design and Implementation of a detailed introduction.
Platform: | Size: 13070336 | Author: | Hits:

[ELanguageCompiler

Description: (1) 将此番分析程序设计成独立一遍扫描源程序的结构。词法分析的输出结果采用如下的二元组表示: (单词种别,单词自身的值) 对表识符,采用下列的二元组表示: (表识符,指向标识符表项的指针) 单词种别建议采用一个关键字一个整数值、一个算符一个整数值等形式,每个整数值是不重复的,设计中应考虑好编码的方案(要跟语法分析连贯)。 (2) 测试用例: 应该建立至少两个测试用例:一个词法上正确的PL/0源程序和词法上部正确的源程序。 -(1) This analysis program will be designed as an independent source to scan the structure again. Lexical Analysis of the output of the dual use of the following group, said: (the word of other species, the value of their own words) on the table knowledge Fu, using the following binary group, said: (Table numeracy Fu, point identifier table entry pointer) word other species suggested an integer value of a keyword, an operator the form of an integer value, each integer value is not repeated, the design should be considered a good encoding program (with grammar analysis of coherence). (2) test case: It should be the establishment of at least two test cases: a lexical correct PL/0 source and the upper part of the correct morphology of the source.
Platform: | Size: 2048 | Author: dong | Hits:

[ELanguagecompiler.design.in.c

Description: 一个c语言写做的编译器的源码,可以供编译器开发的人员学习之用-A c language compiler to do the source, the compiler can be developed for staff learning
Platform: | Size: 518144 | Author: 张孟 | Hits:

[ELanguageSimple

Description: 编译原理实验:设计并实现一个Simple语言的编译器-Compiler Principle Experiment: Design and realization of a Simple Language compiler
Platform: | Size: 707584 | Author: 陈飞 | Hits:

[ELanguagefirst+and+follow

Description: first集 与 follow集 编译原理-first set and follow the principle set compiler
Platform: | Size: 2048 | Author: yiminhui | Hits:

[ELanguagecffxq

Description: 编译器设计的编译程序涉及到编译五个阶段中的三个,即词法分析器、语法分析器和中间代码生成器。编译程序的输出结果包括词法分析后的二元式序列、变量名表、状态栈分析过程显示及四元式序列程序。整个编译程序分为三部分:词法分析部分、语法分析处理及四元式生成部分、输出显示部分。-Compiler design compiler compiler involved in three of five stages, namely, lexical analyzer, syntax analyzer and intermediate code generator. Compiler output results include lexical analysis of binary sequence, variable watch, state stack analysis shows and quaternion sequence procedures. The entire compiler is divided into three parts: part of lexical analysis, grammar analysis and to generate part of quaternion type, the output display.
Platform: | Size: 177152 | Author: 佚星 | Hits:

[ELanguagecompiler

Description: 编译程序的设计与实现.iso 高等教育出版社-Compiler Design and Implementation. Iso Higher Education Press
Platform: | Size: 7884800 | Author: 赵磊 | Hits:

[ELanguageCompiler

Description: 编译原理实验、编译原理课程设计 vc++实现,功能齐全-Compilation Principle experiments, principles of curriculum design compiler vc++ Realized, full-featured
Platform: | Size: 1082368 | Author: clark | Hits:

[ELanguageCompiler Design in C

Description: 编译器设计,C语言实现,完整的编译器结构和语言及概念介绍。(Compiler design in C)
Platform: | Size: 15676416 | Author: darvei | Hits:
« 1 23 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net